Fixes for various punctuation, grammar, and typographical errors.
authorKevin Cozens <kcozens@cvs.gnome.org>
Tue, 2 Jan 2007 04:01:31 +0000 (04:01 +0000)
committerKevin Cozens <kcozens@src.gnome.org>
Tue, 2 Jan 2007 04:01:31 +0000 (04:01 +0000)
2007-01-01  Kevin Cozens  <kcozens@cvs.gnome.org>

* docs/index-static.html.in: Fixes for various punctuation, grammar,
and typographical errors.

svn path=/trunk/; revision=190

ChangeLog
docs/index-static.html.in

index 2fa8e839e1d4fe68668358218b2b36df68deedb0..24c14aeea1f24b2e537eb3e3ed978f1fda0aa1c4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,16 @@
+2007-01-01  Kevin Cozens  <kcozens@cvs.gnome.org>
+
+       * docs/index-static.html.in: Fixes for various punctuation, grammar,
+       and typographical errors.
+
+2007-01-01  Kevin Cozens  <kcozens@cvs.gnome.org>
+
+       * configure.ac: Changes to properly (or at least better) version the
+       babl library.
+
+       * babl.pc.in: It is too soon to include version information in the
+       name of the babl library at link time.
+
 2007-01-01  Kevin Cozens  <kcozens@cvs.gnome.org>
 
        Some changes to fix build problems in FreeBSD and Windows.
index e6ebc505e824cebfe34566c64782cdd98300f26c..b4100f0edcfe35402e47633fa3355de775c8ede1 100644 (file)
@@ -96,7 +96,7 @@
 
     <!--<h1>Babl</h1>-->
     <p>Babl is a <em>dynamic, any to any, pixel format conversion
-      library</em> It provides conversions between the myriad of buffer
+      library</em>. It provides conversions between the myriad of buffer
     types images can be stored in. Babl doesn't only help with existing
     pixel formats, but also facilitates creation of new and uncommon
     ones.</p>
     <a name='Background'></a>
     <h2>Background</h2>
     <p> When creating various libraries and small tools that deal with
-    computer graphics I have often created function for converting
-    raster images between different representations. </p>
+    computer graphics I have often created functions for converting
+    raster images between different representations.
+    </p>
 
     <p>Libraries to help with such conversions already do exist, but no
-    extendable candidate have surfaced in my searches.
+    extendable candidates have surfaced in my searches.
     </p>
 
     <p>The vocabulary developed in babl will most likely be part of
     <p>When using BablFishes to do your conversions, you request a fish to
     convert between two formats, and an optimal fish to babls capability is
     provided that you can use to do your conversions. Babl also provides
-    the capability to describe new formats based on a vocbulary of user
+    the capability to describe new formats based on a vocabulary of user
     registered color models and data types.
     </p>
 
     <p>Babl provides a base vocabulary in BablBase and some extensions
-    thar are thought to be generally useful.</p>
+    that are thought to be generally useful.</p>
 
     <p>When performing further extensions to the vocabulary of babl, the
     internal consistency is governed by reference conversions that operate
-    on <em>double</em> (64 bit floating point values.) The only color model
+    on <em>double</em> (64 bit floating point values). The only color model
     created during BablCore bootstrap is <em>RGBA</em> (linear light RGB,
-    0.0 - 1.0, with a linear 0.0 - 1.0 opacity channel.) backed by
+    0.0 - 1.0, with a linear 0.0 - 1.0 opacity channel) backed by
     the <em>double</em> datatype.
     </p>
 
     constructing BablFishes for other conversions.
     </p>
 
-    <p>Babl extensions are shared objects, if you already have developed
+    <p>Babl extensions are shared objects. If you have already developed
     some fast conversion functions, wrapping them as babl extensions should
-    not take much time, and will speed up babl for other users as well you
-    make the conversions available for others as well.
+    not take much time and will speed up babl for other users as well.
     </p>
 
     <a name='Features'></a>
       <li class='frozen'>Small API for simple use cases</li>
       <li class='stable'>Planar and linear buffers</li>
       <li class='stable'>Thread safety for processing.</li>
-
       <li class='unstable'>Extendable and <a href='http://pippin.gimp.org/babl/introspect.txt'>introspectable</a> formats,
       color models, components and datatypes</li>
       <li class='unstable'>Reference 64bit floating point conversions for
     <a name='Extensions'></a>
     <h3>Extensions</h3>
     <p>
-    At compile, load and runtime; babl is extendable with:
+    At compile, load, and runtime; babl is extendable with:
     </p>
     <ul>
-      <li>data  types.</li>
+      <li>data types.</li>
       <li>color models.</li>
       <li>pixel formats.</li>
       <li>optimized conversion functions:
         <a name='Extending'></a>
         <h2>Extending</h2>
         
-        <p>For samples of how the current internal api of specification of
+        <p>For samples of how the current internal API specification of
         data types, color models, and conversions look in the <tt>extensions/</tt>
         directory. The tables in this HTML file is directly generated
         based on the data registered by BablCore (double and RGBA), BablBase (core datatypes, and RGB models),